home *** CD-ROM | disk | FTP | other *** search
- :
- # Packem - script to tar, compress and remove each of the source directories
- # in the SkunkWare distribution. Written 29 Jun 1994 by Ronald Joe Record.
- #
-
- SRC=/v/csc/usr/dist/src
-
- DIRS="Games Tools X11"
-
- for i in $DIRS
- do
- cd $SRC/$i
- for j in *
- do
- [ -d $j ] && {
- echo "Creating tar archive of $SRC/$i/$j source directory ..."
- tar cf $j.tar $j
- echo "Compressing tar archive of $SRC/$i/$j source directory ..."
- compress -H $j.tar
- [ -f $j.tar.Z ] && {
- echo "Removing $SRC/$i/$j source directory ..."
- rm -rf $j
- }
- }
- done
- done
-